Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
KeyWeaver is a lightweight utility library for generating unique string keys from nested data structures. It provides a simple and efficient way to represent complex data hierarchies as string keys, suitable for use in various scenarios such as caching, data storage, or object comparison.
using npm:
npm install --save keyweaver
or yarn:
yarn add keyweaver
or pnpm:
pnpm add keyweaver
type NestedArray = Array<PrimitiveOrNested> | ReadonlyArray<PrimitiveOrNested>;
type NestedObject = {
[key: string | number]: PrimitiveOrNested;
};
type PrimitiveOrNested =
| boolean
| string
| number
| undefined
| null
| bigint
| Date
| NestedObject
| NestedArray;
const toKey: (value: PrimitiveOrNested) => string;
Generates unique string key from provided nested objects, arrays, and primitives. It recursively traverses the input data structure, converting each element into a string representation and concatenating them with delimiters to ensure uniqueness.
import toKey from 'keyweaver';
const key = toKey({
name: 'John Doe',
age: 30,
address: {
city: 'New York',
zip: '10001',
street: '123 Main St',
},
hobbies: ['reading', 'hiking', 'coding'],
importantDates: {
birthday: new Date('1990-01-01'),
anniversary: new Date('2015-07-15'),
},
some: { very: [{ nested: 'value' }] },
});
toKey('null') !== toKey(null); // true
toKey(1) !== toKey('1'); // true
toKey(1) !== toKey([1]); // true
toKey({ prop1: true, prop2: false }) === toKey({ prop2: false, prop1: true }); // true
toKey({ prop1: true, prop2: undefined }) === toKey({ prop1: true }); // true
MIT © Andrii Dubetskyi
FAQs
Generate unique string keys from nested data structures
We found that keyweaver demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.